home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ AutoExit HungApps.xpl < prev    next >
Text File  |  2001-09-01  |  2KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Shutdown\Windows NT/2K/XP\10) Program Shutdown"
  5. "UIPATH 2"="Startup/Shutdown\Shutdown\Windows 9x/ME\20) Shutdown Options"
  6. "NAME"="AutoEnd Programs"
  7. "VERSION"="1.13"
  8. "OSVERSION"="111111"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Auto End Hung Programs"
  11. "DESCRIPTION 1"="When the computer is about to be shut down, it is possible that a buggy or older program can't be ended because it locks up."
  12. "DESCRIPTION 2"="If this option is activated, the program is automatically terminated upon shut down."
  13. "DESCRIPTION 3"="If this option is deactivated, Windows displays an error message asking the user to terminate a non-responding program manually or perform a shut down."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="Applies to all 32-bit Windows releases. Updated description."
  18. "COMMENT 2"="More info @ MS TechNet: http://www.microsoft.com/technet/winnt/regtwk.asp"
  19. "COMMENT 3"="More info @ MS TechNet: http://www.microsoft.com/technet/win2000/systeman.asp"
  20.  
  21. 'Declaration of some constants
  22. sP="HKCU\Control Panel\Desktop\"
  23. sV1="AutoEndTasks"
  24.  
  25. 'Called when the Plugin is started
  26. Sub Plugin_Initialize
  27.  i=RegReadValue(sp & sv1)
  28.  if i=1 then SetUIElement 1,true
  29. End Sub
  30.  
  31. 'Called when the Plugin should validate the Data the user has entered
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35. 'Called when the Plugin should apply the changes
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  b=GetUIElement(1)
  38.  if b=true then 
  39.   Call RegWriteValue(sp&sv1,1,1)
  40.  else
  41.   Call RegWriteValue(sp&sv1,0,1)
  42.  end if
  43.  
  44. End Sub
  45.  
  46. 'Called when the Plugin is about to be removed from memory
  47. Sub Plugin_Terminate
  48. End Sub
  49.